QueryAXTreeRequest

data class QueryAXTreeRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?, accessibleName: String?, role: String?)

Represents request frame that can be used with Accessibility#queryAXTree operation call.

Query a DOM node's accessibility subtree for accessible name and role. This command computes the name and role for all nodes in the subtree, including those that are ignored for accessibility, and returns those that mactch the specified name and role. If no DOM node is specified, or the DOM node does not exist, the command returns an error. If neither accessibleName or role is specified, it returns all the accessibility nodes in the subtree.

See also

Constructors

QueryAXTreeRequest
Link copied to clipboard
fun QueryAXTreeRequest(nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null, accessibleName: String? = null, role: String? = null)

Properties

accessibleName
Link copied to clipboard
val accessibleName: String? = null
Find nodes with this computed name.
backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId? = null
Identifier of the backend node for the root to query.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Identifier of the node for the root to query.
objectId
Link copied to clipboard
val objectId: RemoteObjectId? = null
JavaScript object id of the node wrapper for the root to query.
role
Link copied to clipboard
val role: String? = null
Find nodes with this computed role.

Sources

jvm source
Link copied to clipboard